home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / TCHK060.LZH / TIMEHK.H < prev    next >
C/C++ Source or Header  |  1988-01-15  |  512b  |  12 lines

  1. /* TCHK 0.60 - Howard Kapustein's Turbo C library      1-15-88 */
  2. /* Copyright (C) 1988, Howard Kapustein.  All rights reserved. */
  3.  
  4. /* timehk.c  -  Howard Kapustein's time routines */
  5.  
  6. /* Global Variables */
  7.  
  8. /* function prototypes */
  9. void delay(int wait);        /* pause for wait * 1/10ths of a second */
  10. char *timetostr(struct time *tsource, boolean seconds, boolean hundreds, boolean ampm);  /* convert time to string */
  11. struct time *strtotime(char *source);       /* convert a string to time */
  12.